token-threaded - definizione. Che cos'è token-threaded
Diclib.com
Dizionario in linea

Cosa (chi) è token-threaded - definizione

ANOTHER PROGRAMMING TECHNIQUE
Indirectly threaded; Threaded code compiler; Threading model; Threading models; Thread model; Direct threading; Direct-threaded code; Indirect threading; Subroutine threading; Threaded interpreter; Threaded code interpreter; Direct threaded code; Direct-threaded; Direct threaded; Direct-threading; Indirect-threaded; Indirect threaded code; Indirect-threaded code; Indirect-threading; Subroutine-threaded code; Subroutine threaded code; Subroutine-threading; Call-threaded code; Call threaded code; Call threading; Call-threading; Token threading; Token-threading; Token-threaded code; Token threaded code; Huffman threading; Huffman-threaded code; Huffman threaded code; Huffman-threading; Huffman-threaded interpreter; Huffman threaded interpreter; Huffman-threaded system; Huffman threaded system; String threading; String-threading

Token coin         
  • $2 coin]] which can also be used to unlock a trolley
  • Token coins in an arcade game
  • Brass trade token from [[Fort Laramie]], Dakota Territory
  • [[Philadelphia Transportation Company]] transit tokens (1940–68)
  • Aluminum trade token from [[Osage City, Kansas]]
  • Show World Center token, New York City, c. 1990
  • Presto]] smart card.
PHYSICAL COIN-LIKE OBJECT USED INSTEAD OF COINS
Token (numismatics); Token (Numismatics); Token coins; Subway token; Subway Token; Arcade token; Game token; Private coin; Trade token; Fare token; Provincial token
In numismatics, token coins or trade tokens are coin-like objects used instead of coins. The field of token coins is part of exonumia and token coins are token money.
token money         
  • Former tokens are collected and displayed
FORM OF MONEY THAT HAS LITTLE INTRINSIC VALUE COMPARED TO ITS FACE VALUE
Digital token
¦ noun money where the face value of notes or coins is unrelated to the value of the material of which they are composed.
threaded code         
<programming> A technique for implementing virtual machine interpreters, introduced by J.R. Bell in 1973, where each op-code in the virtual machine instruction set is the address of some (lower level) code to perform the required operation. This kind of virtual machine can be implemented efficiently in machine code on most processors by simply performing an indirect jump to the address which is the next instruction. Many Forth implementations use threaded code and nowadays some use the term "threading" for almost any technique used to implement Forth's virtual machine. threaded-code.html">http://complang.tuwien.ac.at/forth/threaded-code.html. ["James R. Bell", "Threaded Code", CACM, 1973, 16, 6, pp 370-372]. ["An Architectural Trail to Threaded Code Systems", Kogge, P. M., IEEE Computer, March 1982]. (1998-09-02)

Wikipedia

Threaded code

In computer science, threaded code is a programming technique where the code has a form that essentially consists entirely of calls to subroutines. It is often used in compilers, which may generate code in that form or be implemented in that form themselves. The code may be processed by an interpreter or it may simply be a sequence of machine code call instructions.

Threaded code has better density than code generated by alternative generation techniques and by alternative calling conventions. In cached architectures, it may execute slightly slower. However, a program that is small enough to fit in a computer processor's cache may run faster than a larger program that suffers many cache misses. Small programs may also be faster at thread switching, when other programs have filled the cache.

Threaded code is best known for its use in many compilers of programming languages, such as Forth, many implementations of BASIC, some implementations of COBOL, early versions of B, and other languages for small minicomputers and for amateur radio satellites.